home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / MIT0.M3 < prev    next >
Text File  |  1996-04-01  |  4KB  |  130 lines

  1. name Mitsubishi M0
  2.  
  3. / 00
  4. L >4
  5. N >4
  6. G >2
  7. g >2 G
  8. X ->3.>4
  9. Y ->3.>4
  10. Z ->3.>4
  11. I ->3.>4
  12. J ->3.>4
  13. R ->3.>4
  14. Q ->3.>4
  15. P ->3.>4
  16. F >3.>1
  17. K ->3.>4
  18. T >2
  19. M >2
  20. S >4
  21. H >2
  22. D >2
  23.  
  24. ModalGs 0 1 2 3 73 74 76 80 81 82 83 84 85  # List of g codes that are modal    
  25.  
  26. Sequence#s N 0 1 1                    # Char, freq, incr & start          
  27.  
  28. HCode X                               # X or X U  'Horizontal char.       
  29. VCode Y                               # Y or Y V  'Vertical char.         
  30. Dcode Z                               # Depth char.                       
  31. FeedCode F                            # Feed rate char.                   
  32.  
  33. Comment ( )                           # Begin End comment char.           
  34.  
  35. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  36. Coolant 8 9 7                         # On, Off & Mist m codes            
  37. DComp 41 42 40                        # Left, Right & Cancel m codes      
  38. LComp 43 44                           # On & Off codes                    
  39.  
  40. Feed G1                             # Linear move                       
  41. Rapid G0                            # Rapid positioning word            
  42. Cw G2                               # Circular move clockwise           
  43. Ccw G3                              # Circular move counter clockwise   
  44.  
  45. Spaces? Y                             # Y or N  'Spaces between words     
  46.  
  47. Incremental? N                        # Y or N  'Inc or abs output        
  48. CtrIncremental? Y                     # Y or N  'Inc or abs I & J         
  49. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  50.  
  51. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  52.  
  53. CtrCode I J                           # I J or R or I J K L               
  54. Helical? N
  55.  
  56. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  57.  
  58. Drill                                 # Drilling canned/manual cycle      
  59. G81 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  60. end cancel
  61.  
  62. Peck                                  # Pecking canned/manual cycle       
  63. G83 X[H] Y[V] Z[D] Q[VBite] R[Vclear] F[FRate]
  64. end cancel
  65.  
  66. Tap                                   # Tapping canned/manual cycle       
  67. G84 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  68. end cancel
  69.  
  70. LTap                                  # Left handed tapping cycle         
  71. G74 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  72. end cancel
  73.  
  74. Ream                                  # Reaming canned/manual cycle       
  75. G85 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  76. end cancel
  77.  
  78. Bore                                  # Boring canned/manual cycle        
  79. G76 X[H] Y[V] Z[D] R[Vclear] Q[SClear] F[FRate]
  80. end cancel
  81.  
  82. Back                                  # Back boring canned/manual cycle   
  83. G87 X[H] Y[V] Z[D] R[Vclear] Q[SClear] F[FRate]
  84. end cancel
  85.  
  86. Cancel                                # Cancel a canned/manual cycle      
  87. G80
  88. end
  89.  
  90. StartCode                             # Start of the program              
  91. L[Program#]
  92. End
  93.  
  94. 1stToolChange                         # First tool change                 
  95. /0 g91
  96. /0 G28 X2 Y[-2] Z[-2]
  97. N[Block] T[Tool] M6
  98. G0 G90 G[Work] G40 G80 X[H] Y[V]
  99. G43 Z[D] H[Lcomp] M[Direct] S[Speed]
  100. M[Cool]
  101. End
  102.  
  103. Infeed                                # Enable cutter comp                
  104. G1 Z[D] F[Plunge]
  105. G[Side] X[H] Y[V] H[DComp] F[FRate]
  106. end
  107.  
  108. Outfeed                               # Disable cutter comp               
  109. G1 G40 X[H] Y[V]
  110. Z[D]
  111. end
  112.  
  113. ToolChange                            # Secondary tool changes            
  114. g91 M9
  115. G28 G44 Z0 S100
  116. N[Block] T[Tool] M6
  117. G0 G90 G40 G80 X[H] Y[V]
  118. G43 Z[D] H[Lcomp] M[Direct] S[Speed]
  119. M[Cool]
  120. End
  121.  
  122. EndCode                               # End of the program                
  123. g91 G0
  124. G28 G44 Z0 S100
  125. G28 X0 Y0 M5
  126. M30
  127. End
  128.  
  129.  
  130.